[Docker] Docker Volume


  • docker volume share with host

    docker run --name website -v C:\Docker\website:/usr/share/nginx/html -d -p 3000:80 nginx

  • docker volume share between containers

    docker run --name website-copy --volumes-from website -d -p 8081:80 nginx

#docker






你可能感興趣的文章

每日心得筆記 2020-06-15(一)

每日心得筆記 2020-06-15(一)

DAY 04 : 資料結構緒論

DAY 04 : 資料結構緒論

react-redux 錯誤訊息:...is missing in props validation

react-redux 錯誤訊息:...is missing in props validation






留言討論